home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / objovr.zip / OBJTYPES.PAS < prev    next >
Pascal/Delphi Source File  |  1993-01-04  |  142b  |  12 lines

  1. unit ObjTypes;
  2.  
  3. interface
  4.  
  5.   const
  6.     Max = 100;
  7.   type
  8.     OBJitizedDataType = array [ 1 .. Max ] of real;
  9.  
  10. implementation
  11.  
  12. end.